body {
  margin: 0;
  padding: 0;
  font-family: "Exo 2", sans-serif;
}

/* HERO BACKGROUND */
.hero-section {
  background: url('../images/header-bg.png') center/cover no-repeat;
  height: 100%;
  width: 100%;
  position: relative;
}

/* DARK OVERLAY */
.hero-section::before {
  content: "";
  position: absolute;
  background: rgba(6, 25, 41, 0.60);
}

/* NAVBAR EXACT STYLE */



.navbar-toggler {
  background-color: transparent;
  color: white;
}

.navbar-brand img {
  width: 220px;
}

.navbar-brand {
  width: 16%;
}

.nav-link {
  color: white !important;
  font-size: 15px;
  margin-right: 18px;
}

/* #mainNav{
        margin-left: 90px;
    } */


.navbar>.container {
  padding: 0 20px;
}

.contact-btn {
  background: white;
  color: #b28f3e;
  padding: 10px 22px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
}

/* HERO CONTENT RIGHT */
.hero-content {
  position: relative;
  z-index: 1;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 0%;
  text-align: center;
  color: #fff;
  padding-top: 43px;
  padding-bottom: 48px;

}

.hero-title {
  font: 700 48px / 53px "Exo 2", sans-serif;
  margin-bottom: 18px;

}

.hero-sub {
  font: 19px / 23px "Open Sans", serif;
  margin-bottom: 42px;
}

.hero-buttons a {
  margin-right: 15px;
  padding: 10px 22px;
  display: inline-block;
  border-radius: 30px;
  font-size: 19px;
  font-weight: 600;

  text-decoration: none;
}

.btn-white {
  background-color: #b28f3e;
  color: white;
}

.btn-outline-white {
  border: 2px solid #b28f3e;
  color: #b28f3e;
  background-color: white;
}

#drop-1 {
  left: 68%;
  top: 68%;
}


/*  */

.hero-sections {
  margin-top: 50px;
  background-color: white;
}

/* Ensure the text and content is centered on all screen sizes */
.hero-sections .row {
  margin: 0;
  display: flex;
  justify-content: center;
  /* Center content horizontally */
}

/* Left column content styling */
.hero-sections .col-lg-6 {
  padding-right: 30px;
  /* Adjust space on right side */
}

/* Heading styling */
.hero-sections h1 {
  font-weight: bold;
  font-size: 1.5rem;
}

/* Paragraph styling */
.hero-sections p {
  line-height: 1.8;
}

/* List styling */
.hero-sections ul {
  list-style-type: none;
  padding-left: 0;
  text-decoration: dotted;
}

.hero-sections ul li {
  font-size: 1.1rem;
}

/* Styling for right column (you can add image or more content here) */
.hero-sections .col-lg-6 {
  padding: 0;
  /* Ensures that the right column takes up space without any padding */
}
















/* form */
.contact-section {
  background-image: url('../images/form-bg.jpg');
  /* Replace with your image path */
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  color: white;
}

/* Form container styling */
.form-container {
  background-color: transparent;
  /* Semi-transparent white background */
  padding: 40px;
  border-radius: 8px;
  max-width: 700px;
  margin: 0 auto;
}

.form-container h2 {
  text-align: center;
  font-size: 28px;
}

.form-container p {
  text-align: center;
  font-size: 16px;
  margin-bottom: 30px;
}

.form-control {
  border-radius: 5px;
  border: 1px solid #ccc;
  margin-bottom: 15px;
}

.textarea {
  border-radius: 5px;
  border: 1px solid #ccc;
  margin-bottom: 15px;
  height: 150px;
}

.submit-btn {
  background-color: #b28f3e;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 30px;
  cursor: pointer;
  width: 90%;
}

.submit-btn:hover {
  background-color: #b1841d;
}

.recaptcha {
  margin-bottom: 20px;
  display: flex;
  width: 100%;

}

.recaptcha-img {
  font-size: 12px;
  color: #555;
  margin-top: 5px;
}

.form-row {
  display: flex;
  justify-content: space-between;
}

.form-row .form-group {
  flex: 1;
}

.form-row .form-group+.form-group {
  margin-left: 15px;
}

.box {
  border: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  border-radius: 15px;
}

.boxes:hover {
  border-color: #b28f3e;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
  border: 1px solid #b28f3e;
  border-radius: 15px;
}

.box-1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 60px 5%;
  text-align: center;
}



/* footer */

.footer-container {
  background-color: #414141;
  color: white;
  padding: 40px 0;
}

.footer-logo img {
  max-width: 220px;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

.footer-col h3 {
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: bold;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: white;
  text-decoration: none;
}

.footer-col ul li a:hover {
  text-decoration: underline;
}

.social-icons a {
  color: white;
  margin-right: 10px;
  text-decoration: none;
}

.footer-bottom {
  background-color: #414141;
  text-align: left;
  padding: 15px 0;
  padding-left: 20px;
}

.footer-bottom p {
  margin: 0;
  color: #888;
}











/* overview css start */


.content-section {
  margin-top: 50px;
  display: flex;
}

.content-section h2 {
  font-size: 2rem;
  color: black;
}

.content-section p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.content-section ul {
  font-size: 1.1rem;
  margin-left: 20px;

}
.content-ul ul{
  font-size: 1.1rem;
  margin-left: 20px;
}

.content-section a {
  color: #b28f3e;
  text-decoration: none;
}

.content-section img {
  width: 100%;
  border-radius: 8px;
}

.image-container {
  margin-top: 30px;
}

.col-lg-8,
.col-lg-4 {
  padding-right: 15px;
  padding-left: 15px;
}


.section-title {
  font-weight: 700;
  font-size: 2rem;
}

.custom-btn {
  background-color: #b28f3e;
  color: #fff;
  padding: 15px 35px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
}

.custom-btn:hover {
  background-color: #b1841d;
  color: white;
}

.thin-line {
  height: 1px;
  background-color: #e5e5e5;
  width: 100%;
  margin: 40px 0;
}


.project-image {
  max-width: 750px;
  /* Same width as screenshot */
  width: 100%;
  display: block;
  margin: 0 auto;
  /* Center the image */
  border-radius: 4px;
}

.image-block {
  margin: 60px 0;
  /* Space like screenshot */
}


/* overview css end */













/* ust/ast css start */

.content-wrapper {
max-width: 820px; /* Same narrow centered width as image */
margin: 0 auto;
}
.content-wrapper h2 {
font-size: 26px;
font-weight: 700;
margin-bottom: 25px;
}
.content-wrapper p {
font-size: 18px;
line-height: 1.6;
margin-bottom: 18px;
}
.content-wrapper ul li {
margin-bottom: 6px;
font-size: 16px;
}
.ust-btn {
background: #b28f3e;
border: none;
padding: 10px 32px;
color: #fff;
border-radius: 15px;
font-size: 14px;
font-weight: 600;
text-decoration: none;
}
.section-title {
font-size: 20px;
font-weight: 700;
margin-top: 40px;
margin-bottom: 15px;
}
.img-block img {
width: 100%;
border-radius: 2px;
margin-bottom: 28px;
}

/* ust/ast css close */
























/* ------------------------------ */

/* Offcanvas full height white */
#mobileMenu {
  background: #ffffff !important;
  width: 270px !important;
  padding-top: 10px;
}

/* Close button style (same as screenshot) */
#mobileMenu .btn-close {

  opacity: 1;
  font-size: 20px;
}

/* Main nav links */
#mobileMenu .nav-link {
  font-size: 15px;
  font-weight: 600;
  color: #1f1f1f !important;
  padding: 14px 0;
  border-bottom: 1px solid #e5e5e5;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Arrow icon */
#mobileMenu .nav-link::after {
  content: "";
  font-size: 18px;
  margin-left: 6px;
}

/* Dropdown always visible inside mobile menu */
#mobileMenu .dropdown-menu {
  display: none !important;
  position: relative;
  transform: none !important;
  box-shadow: none !important;
  border: none !important;
  padding-left: 10px;
}

#mobileMenu .dropdown-menu.show {
  display: block !important;
}

/* Submenu items */
#mobileMenu .dropdown-item {
  font-size: 14px;
  color: #333 !important;
  padding: 7px 0;
}

/* CONTACT US Button */
#mobileMenu .btn-primary {
  margin-top: 25px;
  padding: 10px 0;
  font-size: 15px;
  border-radius: 20px;
}

/* Remove blue hover */
#mobileMenu .dropdown-item:hover {
  background: none !important;
}

#mobileMenu .mobile-toggle::after {
  content: "▾";
  float: right;
  font-size: 12px;
  margin-top: 5px;
}


/* --------------------------------- */
/* DO NOT TOUCH OTHER PAGE ELEMENTS  */
/* HERO + NAVBAR SAFE                */
/* --------------------------------- */

@media (max-width: 768px) {

  .hero-section {
    height: 550px;
    /* fixed height - bilkul perfect */
    background-position: center top;
    background-size: cover !important;
  }

  .hero-content {
    padding-top: 120px;
    /* text perfect center me */
  }

  .hero-title {
    font-size: 38px !important;
    line-height: 34px !important;
    margin: 5px;
  }

  .hero-sub {
    font-size: 15px !important;
  }

  .hero-buttons a {
    font-size: 15px !important;
    padding: 8px 18px !important;
  }

  .hero-buttons a {
    display: block !important;
    /* har button full width */
    width: 90% !important;
    /* same width */
    margin: 0 auto 12px auto !important;
    /* center + gap 12px */
    text-align: center !important;
  }
}



.monile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px;
}

.border-line tr td  {
  border-style: none;
}
.table-light th{
 border-style: none;
}
.table-secondary th{
  border-style: none;
}
